home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / misc / neuralnetlib.lha / neuralnetlib / include / libraries / neuralnet.h
Encoding:
C/C++ Source or Header  |  1999-02-05  |  337 b   |  29 lines

  1. #ifndef    NEURALNET_H
  2. #define NEURALNET_H    1
  3. /*
  4. **    $VER: neuralnet.h 4.1 (4.2.99)
  5. **
  6. **    neuralnet.library definitions
  7. */
  8.  
  9. #ifndef UTILITY_TAGITEM_H
  10. #include <utility/tagitem.h>
  11. #endif
  12.  
  13.  
  14. /*
  15.  *    Tags (none defined yet)
  16.  */
  17.  
  18. #define    NN_Dummy                (TAG_USER+0x1000)
  19.  
  20.  
  21. /*
  22.  *    Types
  23.  */
  24.  
  25. typedef float NEURON;
  26. typedef void * NEURALNET;
  27.  
  28. #endif
  29.